compress/flate.compressor.index (field)

35 uses

	compress/flate (current package)
		deflate.go#L103: 	index         int
		deflate.go#L124: 	if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
		deflate.go#L127: 		d.index -= windowSize
		deflate.go#L185: 	if d.index != 0 || d.windowEnd != 0 {
		deflate.go#L228: 	d.index = n
		deflate.go#L378: 	d.index = 0
		deflate.go#L385: 	if d.windowEnd-d.index < minMatchLength+maxMatchLength && !d.sync {
		deflate.go#L390: 	if d.index < d.maxInsertIndex {
		deflate.go#L391: 		d.hash = hash4(d.window[d.index : d.index+minMatchLength])
		deflate.go#L396: 		if d.index > d.windowEnd {
		deflate.go#L399: 		lookahead := d.windowEnd - d.index
		deflate.go#L404: 			if d.index > d.windowEnd {
		deflate.go#L411: 					d.tokens = append(d.tokens, literalToken(uint32(d.window[d.index-1])))
		deflate.go#L415: 					if d.err = d.writeBlock(d.tokens, d.index); d.err != nil {
		deflate.go#L423: 		if d.index < d.maxInsertIndex {
		deflate.go#L425: 			d.hash = hash4(d.window[d.index : d.index+minMatchLength])
		deflate.go#L428: 			d.hashPrev[d.index&windowMask] = uint32(d.chainHead)
		deflate.go#L429: 			*hh = uint32(d.index + d.hashOffset)
		deflate.go#L435: 		minIndex := d.index - windowSize
		deflate.go#L443: 			if newLength, newOffset, ok := d.findMatch(d.index, d.chainHead-d.hashOffset, minMatchLength-1, lookahead); ok {
		deflate.go#L464: 					newIndex = d.index + d.length
		deflate.go#L466: 					newIndex = d.index + prevLength - 1
		deflate.go#L468: 				index := d.index
		deflate.go#L480: 				d.index = index
		deflate.go#L489: 				d.index += d.length
		deflate.go#L490: 				if d.index < d.maxInsertIndex {
		deflate.go#L491: 					d.hash = hash4(d.window[d.index : d.index+minMatchLength])
		deflate.go#L496: 				if d.err = d.writeBlock(d.tokens, d.index); d.err != nil {
		deflate.go#L503: 				i := d.index - 1
		deflate.go#L505: 					i = d.index
		deflate.go#L515: 			d.index++
		deflate.go#L631: 		d.index, d.windowEnd = 0, 0